d38c30e5cad0327f0f5c57be146bb4f10c378449,edu.usc.cssl.tacit.common.ui/src/edu/usc/cssl/tacit/common/ui/corpusmanagement/MasterDetailsPage.java,MasterDetailsPage,writeRObj,#String#CorpusClass#,766

Before Change


	private static void writeRObj(String outputLoc, CorpusClass cls) throws Exception{
		
		// Location where the R Object needs to be saved.
		String saveLocation = "\"" + outputLoc + File.separator + cls.getParent().getCorpusName() + "-" + cls.getClassName() + ".RData" + "\"";
		
		// Location of the corpus
		String corpusLocation = cls.getTacitLocation();

After Change


	private static void writeRObj(String outputLoc, CorpusClass cls) throws Exception{
		
		// Location where the R Object needs to be saved.
		String saveLocation = "\"" + outputLoc + File.separator + cls.getParent().getCorpusName().replace(" ", "_") + "-" + cls.getClassName().replace(" ", "_") + ".RData" + "\"";
		
		// Location of the corpus
		String corpusLocation = cls.getTacitLocation();